home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / pcl4w13.zip / SIMPLE._M_ < prev    next >
Text File  |  1996-07-13  |  735b  |  32 lines

  1. #
  2. # Microsoft makefile for SIMPLE (small model)
  3. #
  4. # To use: "NMAKE SIMPLE._M_"
  5. # (use NMAKE, not MAKE)
  6. #
  7.  
  8. C_FLAGS = -c -AS -GA -Oas -Zp
  9.  
  10. simple.exe: simple.res simple.obj simple.def pcl4w.lib \
  11.            about.obj line.obj paint.obj sioerror.obj
  12.     link /NOD /NOE  @simple.rsp,,,libw slibcew pcl4w.lib,simple.def;
  13.     rc simple.res
  14.  
  15. simple.res: simple.rc simple.h
  16.     rc -r simple.rc
  17.  
  18. about.obj: about.c about.h
  19.    cl $(C_FLAGS)  about.c
  20.  
  21. line.obj: line.c line.h pcl4w.h
  22.     cl $(C_FLAGS)  line.c
  23.  
  24. paint.obj: paint.c paint.h pcl4w.h
  25.     cl $(C_FLAGS)  paint.c
  26.  
  27. simple.obj: simple.c simple.h pcl4w.h
  28.    cl $(C_FLAGS)  simple.c
  29.  
  30. sioerror.obj: sioerror.c sioerror.h pcl4w.h
  31.    cl $(C_FLAGS)  sioerror.c
  32.